home *** CD-ROM | disk | FTP | other *** search
- #!smake
-
- # This is the makefile for the Blix world wide highscore server !
- # You won't be needing this, because blix wants only one world wide
- # server in action. (that's what makes it world wide :-)
- # it does not install itself!
- #
- # type make -f servermake
- #
- # (c) 1994 Frans van Hoesel (hoesel@chem.rug.nl)
- # Xtreme Graphics Software
-
- include $(ROOT)/usr/include/make/commondefs
- include $(ROOT)/usr/include/make/releasedefs
-
- OPTIMIZER = -O2
-
- CFILES = blixscore_io.c blixserver.c
- TARGETS = blixserver
-
- MAJORRELEASE = $(RELEASE:M[0-4]*)
-
- #if ( $(MAJORRELEASE) == "" )
- # these three lines are for 5.x systems
- LCDEFS = -DFUNCPROTO -DDATADIR=$(DATADIR) -DUNCOMPRESS=$(UNCOMPRESS)
- LCOPTS = -I. -float -fullwarn -woff 581,613,835
- LLDLIBS = -lmalloc
-
- #else
- # these are for 4.0.5 systems (blix is not tested on anything before that)
- LCDEFS = -DFUNCPROTO -DDATADIR=$(DATADIR) -DUNCOMPRESS=$(UNCOMPRESS) -DOLD_STYLE_INVENT
- LCOPTS = -I. -float -fullwarn -woff 287,269,151,24
- LLDLIBS = -lmalloc -lc_s
-
- #endif
-
- CFLAGS = $(VCFLAGS) $(LCFLAGS) $(GCFLAGS)
-
-
- default all: blixserver
-
- include $(COMMONRULES)
-
- blixserver: $(OBJECTS)
- $(CCF) $(OBJECTS) $(LDFLAGS) -o blixserver
-
- # DO NOT DELETE THIS LINE -- make depend depends on it.
-